func github.com/andybalholm/brotli.combineLengthCodes
14 uses
github.com/andybalholm/brotli (current package)
backward_references_hq.go#L439: var cmdcode uint16 = combineLengthCodes(inscode, copycode, j == 0)
backward_references_hq.go#L500: var cmdcode uint16 = combineLengthCodes(inscode, copycode, false)
command.go#L141: func combineLengthCodes(inscode uint16, copycode uint16, use_last_distance bool) uint16 {
command.go#L169: *code = combineLengthCodes(inscode, copycode, use_last_distance)
encoder.go#L63: command := combineLengthCodes(insertCode, copyCode, i > 0 && m.Distance == matches[i-1].Distance)
encoder.go#L130: command := combineLengthCodes(insertCode, copyCode, i > 0 && m.Distance == matches[i-1].Distance)
encoder_fast.go#L39: e.commandHisto[combineLengthCodes(uint16(i), 0, false)] = uint32(2000 / (i + 1) / (i + 1))
encoder_fast.go#L46: e.commandHisto[combineLengthCodes(0, 0, true)] = 50
encoder_fast.go#L48: e.commandHisto[combineLengthCodes(0, uint16(i), i < 16)] = uint32(800 / i)
encoder_fast.go#L106: e.commandHisto[combineLengthCodes(uint16(i), 0, false)] = 1
encoder_fast.go#L109: e.commandHisto[combineLengthCodes(0, uint16(i), i < 16)] = 1
encoder_fast.go#L138: command := combineLengthCodes(insertCode, 0, false)
encoder_fast.go#L174: command := combineLengthCodes(0, copyCode, true)
encoder_fast.go#L180: command := combineLengthCodes(0, copyCode, false)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |